home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_id-utils.idb / usr / freeware / bin / listsrc.z / listsrc
Encoding:
Text File  |  1998-10-28  |  306 b   |  18 lines

  1. #!/bin/sh
  2. #
  3. # List all of the source files in the current directory and of its descendants
  4. #
  5. Dir=${1:-.}
  6.  
  7. find $Dir \
  8.     \( -name "*.[cfhlys]" -o -name "*.c++" \)  \
  9.     ! -name ".*"        \
  10.     ! -name "llib-*"    \
  11.     ! -name "*,v"        \
  12.     ! -name "*~"        \
  13.     ! -type l        \
  14.      -print            \
  15. | grep -v tlink            \
  16. | grep -v bootarea
  17.  
  18.